home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET 2
/
BCI NET 2.iso
/
archives
/
programming
/
gui
/
precog2_1.lha
/
Precognition2_1
/
include
/
parms.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-12-12
|
318 b
|
23 lines
#ifndef PARMS_H
#define PARMS_H
#ifdef __SASC_60 /* SAS/C 6.0 or higher */
#define ANSI_HEADERS 1
#endif
#ifdef _DCC /* DICE 3.0 */
#define ANSI_HEADERS 1
#endif
#ifdef __GNUC__ /* GCC 2.6.1 */
#define ANSI_HEADERS 1
#endif
#ifdef ANSI_HEADERS
#define __PARMS(s) s
#else
#define __PARMS(s) ()
#endif
#endif